home *** CD-ROM | disk | FTP | other *** search
/ The Sunday Times: Parent Power / The Sunday Times - Parent Power.iso / pc / engine / encycmenu.swf / scripts / DefineButton2_66 / BUTTONCONDACTION on(release).as
Encoding:
Text File  |  2005-11-04  |  439 b   |  18 lines

  1. on(release){
  2.    var node;
  3.    var file;
  4.    node = platform != "mac" ? downloads.byPath("pc") : downloads.byPath("mac");
  5.    trace("mac or pc: " + platform);
  6.    trace("node: " + node);
  7.    file = node.byPath("encyclopedia").getText();
  8.    trace("file: " + file);
  9.    if(ebterms)
  10.    {
  11.       getURL("lingo:Flsh_openProgramFile(\"" + file + "\",\"\")","");
  12.    }
  13.    else
  14.    {
  15.       _root.overlay_mc.show("eb_terms_confirm");
  16.    }
  17. }
  18.